python distance between coordinates

35

python distance between coordinates -

import geopy.distance

coords_1 = (52.2296756, 21.0122287)
coords_2 = (52.406374, 16.9251681)

print(geopy.distance.distance(coords_1, coords_2).km)

Comments

Submit
0 Comments